Post

Replies

Boosts

Views

Activity

javascript alert showing html file name as title in Xcode simulator
My app is a hybrid app when I run the Xcode simulator then js alert (alert() function) showing an alert message with the file name as a title, till now it is working fine but I faced this issue only in Xcode 11.5, Xcode 11.4.1.How can we hide the alert title? And also when I kill the application and quit the Xcode and open the app directly from a simulator without running source code from Xcode it is fine.Code we are using:- alert("This is an alert")
0
0
523
May ’20
Local storage data getting deleted in ios 13 version in ipad devices
Hi Team, We are using following different concepts for storing the users data in the device in our hybrid mobile application and even though the app is killed or closed from background we should get the stored values, Because our app should work in offline as well. We are using below code to store. (language:jquery) 1.localStorage.put("some key", "somevalue") 2.preference.put("some key", "somevalue") 3.globalpreference.put("some key", "somevalue") 4.memorypreference.put("some key", "somevalue") And we are below code to retrive back. 1.localstorage.get("some key") 2.preference.get("some key") 3.globalpreference.get("some key") 4.memorypreference.get("some key) This concept was working 100% till iOS version 12.4.2 But this concept not working in iOS version 13.1, 13.2 The data will retain only when the app is in active state. But the stored key itself is deleted once we kill or destroyed the app from background task in iOS 13 device (iPad)and check back again. Surprisingly, Our above concept is perfectly working in Xcode 11.2 with iPad stimulator and even it will work on on real device debugging, and also for Lower version device. But when we generate the ipa and downloaded in real device, the data is getting deleted when we kill/close the application without uninstalling. But the same ipa working fine in lower version of real device. Kindly help us regarding this, because there is no code changes and we are unable to debug it because it is working as expected in stimulator. Need help on urgent basis because it is impacting our business for higher version of iPad device. Is there any work around for it?
7
0
8.8k
Nov ’19